}
// 2. Try the local cache
Value<V> tmp=l2_cache.get(key);
if(tmp != null)
return tmp.getVal();
}
// 2. Try the local cache
Cache.Value<Value<V>> val=l2_cache.getEntry(key);
Value<V> tmp;
if(val != null) {
tmp=val.getValue();
if(tmp !=null) {
V real_value=tmp.getVal();